View Javadoc
1 /************************************************************ 2 * Copyright * 3 * Portions of this software are Copyright (c) 1993 - 2002, * 4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew * 5 * - http://www.nevrona.com/Indy/ * 6 ************************************************************/ 7 package org.indy; 8 9 import org.indy.io.IOHandler; 10 11 12 /*** 13 * Description of the Class 14 * 15 *@author owen 16 */ 17 public class TCPServerConnection extends Connection { 18 /*** 19 * Description of the Field 20 */ 21 protected TCPServer server; 22 23 /*** 24 * Constructor for the IdTCPServerConnection object 25 * 26 *@param server Description of the Parameter 27 */ 28 public TCPServerConnection(TCPServer server, IOHandler handler) { 29 super(handler); 30 this.server = server; 31 } 32 33 /*** 34 * Gets the server attribute of the IdTCPServerConnection object 35 * 36 *@return The server value 37 */ 38 public TCPServer getServer() { 39 return server; 40 } 41 }

This page was automatically generated by Maven